home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Auge 4000 / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).zip / Auge 4000 #47 (1990-06-22)(Amiga User Gruppe Einzugsgebiet 4000).adf / arp-pro1.3 / OLD_MANUAL / Strcmp < prev    next >
Text File  |  1990-06-22  |  723b  |  67 lines

  1.  
  2.  
  3.  
  4.      Strcmp(31.0)      ARP Programmers Manual      Strcmp(31.0)
  5.  
  6.  
  7.  
  8.      NAME
  9.       Strcmp - Compare two strings,    ignoring case.
  10.  
  11.      SYNOPSIS
  12.       result = Strcmp(s1, s2)
  13.         d0        a0    a1
  14.  
  15.      FUNCTION
  16.       This is a standard implementation of this function, found in
  17.       many C libraries, with the exception that case is ignored.
  18.       In other words, Strcmp("ABC",    "abc") will regard these two
  19.       strings as equal.
  20.  
  21.      INPUTS
  22.       s1,s2    - Pointer to null terminated ascii strings.
  23.  
  24.      RESULTS
  25.       result - returns less    than zero if s1    < s2, returns zero if
  26.           s1 ==    s2, and    returns    greater    than zero if s1    > s2.
  27.  
  28.      BUGS
  29.       None Known
  30.  
  31.      AUTHOR:
  32.       SDB
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.      Page 1                         (printed 2/22/88)
  64.  
  65.  
  66.  
  67.